home *** CD-ROM | disk | FTP | other *** search
/ MacGames Sampler / PHT MacGames Bundle.iso / MacSource Folder / Samples from the CD / C and C++ / POSIX / ThinkCPosix / sys⁄dir.h < prev    next >
Text File  |  1992-09-14  |  329b  |  23 lines

  1. /* $Id: $ */
  2.  
  3. /*
  4.  * "Dir.h" for the Macintosh.
  5.  * Public domain by Guido van Rossum, CWI, Amsterdam (July 1987).
  6.  */
  7.  
  8. #pragma once
  9.  
  10. typedef struct {
  11.     long dirid;
  12.     int nextfile;
  13. } DIR;
  14.  
  15. struct direct {
  16.     char d_name[FILENAME_MAX];
  17. };
  18.  
  19. DIR *opendir(char *);
  20. struct direct *readdir(DIR *);
  21. int closedir(DIR *);
  22. void rewinddir(DIR*);
  23.